home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / JAVA / LANG / ArrayIndexOutOfBoundsException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  617 b   |  15 lines

  1. package java.lang;
  2.  
  3. public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
  4.    public ArrayIndexOutOfBoundsException() {
  5.    }
  6.  
  7.    public ArrayIndexOutOfBoundsException(int var1) {
  8.       super("Array index out of range: " + var1);
  9.    }
  10.  
  11.    public ArrayIndexOutOfBoundsException(String var1) {
  12.       super(var1);
  13.    }
  14. }
  15.